return;
}
+
+static int chwall_is_default_policy(void)
+{
+ return ( (chwall_bin_pol.max_types == 1 ) &&
+ (chwall_bin_pol.max_ssidrefs == 2 ) );
+}
+
struct acm_operations acm_chinesewall_ops = {
/* policy management services */
.init_domain_ssid = chwall_init_domain_ssid,
.fail_grant_setup = NULL,
/* generic domain-requested decision hooks */
.sharing = NULL,
+
+ .is_default_policy = chwall_is_default_policy,
};
/*
struct acm_sized_buffer *errors)
{
uint32_t offset, length;
+ static int require_update = 0;
write_lock(&acm_bin_pol_rwlock);
+ if ( require_update != 0 &&
+ ( deletions == NULL || ssidchanges == NULL ) )
+ {
+ goto error_lock_free;
+ }
+ require_update = 1;
/*
first some tests to check compatibility of new policy with
current state of system/domains
&pol->xml_pol_version,
sizeof(acm_bin_pol.xml_pol_version));
+ if ( acm_primary_ops->is_default_policy() &&
+ acm_secondary_ops->is_default_policy() ) {
+ require_update = 0;
+ }
+
write_unlock(&acm_bin_pol_rwlock);
+
return ACM_OK;
error_lock_free:
return ACM_ACCESS_DENIED;
}
+/* */
+
+static int
+ste_is_default_policy(void)
+{
+ return ( (ste_bin_pol.max_types == 1) &&
+ (ste_bin_pol.max_ssidrefs == 2) );
+}
/* now define the hook structure similarly to LSM */
struct acm_operations acm_simple_type_enforcement_ops = {
.pre_grant_setup = ste_pre_grant_setup,
.fail_grant_setup = NULL,
.sharing = ste_sharing,
+
+ .is_default_policy = ste_is_default_policy,
};
/*
void (*fail_grant_setup) (domid_t id);
/* generic domain-requested decision hooks (can be NULL) */
int (*sharing) (ssidref_t ssidref1, ssidref_t ssidref2);
+ /* determine whether the default policy is installed */
+ int (*is_default_policy) (void);
};
/* global variables */